home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / xboard21.lha / xboard-2.1.pl11 / Imakefile < prev    next >
Makefile  |  1993-01-04  |  759b  |  36 lines

  1. #
  2. # Imakefile -- for instructions on generating a Makefile
  3. #   for xboard from this file, see the file INSTALL.
  4. #
  5.  
  6.    SYS_LIBRARIES = -lm
  7.  LOCAL_LIBRARIES = XawClientLibs
  8.          DEPLIBS = XawClientDepLibs
  9.          DEFINES = -DHAS_GETTIMEOFDAY
  10. #     CDEBUGFLAGS = -g
  11. #              CC = gcc -Wall -pedantic -ansi -Wno-implicit -Wno-comment
  12. #              CC = gcc -Wall -traditional
  13.  
  14. # For HP-UX, per R. K. Lloyd:
  15. #     CDEBUGFLAGS = +O3 +Obb1000
  16.  
  17. # Try this if you use gcc and xboard crashes in sscanf.
  18. # Probably needed on VAX Ultrix 3.1 and on IBM PS/2 AIX.
  19. #       CCOPTIONS = -fwritable-strings
  20.  
  21. SRCS = parser.c xboard.c
  22. OBJS = parser.o xboard.o
  23.  
  24. AllTarget(xboard)
  25.  
  26. depend:: parser.c
  27.  
  28. clean::
  29.     $(RM) parser.c chess.lst
  30.  
  31. ComplexProgramTarget(xboard)
  32.  
  33.  
  34.  
  35.  
  36.